This command is new in PageMaker 6.5
PLinkFrames(const PRequestBuf& frames);
Because this command requires a variable number of parameters, you must build a PRequestBuf object and pass it to the constructor. The PRequestBuf object must contain the number of frames (a short), followed by that number of frame IDs. The frames are linked in the order they are specified.Example.
PRequestBuf frames(100); // 100 bytes, plenty big
frames << (short) 3;
frames << (unsigned long) 1;
frames << (unsigned long) 23;
frames << (unsigned long) 14;
PLinkFrames(frames);
The PGetFrameContentPos, PGetFrameInset, PGetFrameContentType, PGetIsFrame, and PGetNextFrame queries
Comments or suggestions? Contact Adobe Developer Support